home *** CD-ROM | disk | FTP | other *** search
/ PCBoard 15.1 Demo / PCBoard v15.1 DEMO - Clark Dev. Co (1994) - Disk 1 of 1.imd / PCBDISK.EXE / GEN / STUFF < prev    next >
Encoding:
Text File  |  1994-02-14  |  984 b   |  22 lines

  1. rem You can stuff the keyboard with keystrokes you want to execute upon
  2. rem returning from a door.  For example, if you want to re-open the door menu
  3. rem for your callers, you can stuff the "OPEN" command.  If the PCBSTUFF.KBD
  4. rem file exists in the default or node subdirectory, the contents of the file
  5. rem will be stuffed to the keyboard as if the user typed it in.
  6. rem
  7.       echo.     >>pcbstuff.kbd
  8.       echo OPEN >>pcbstuff.kbd
  9. rem
  10. rem The following four lines will make sure that the door always returns to
  11. rem PCBoard (even if the door is configured to operate via shelling).  You
  12. rem can use these four lines at the end of all of your door batch files.
  13.  
  14.       if "%INPCB%" == "Y" exit
  15.       %pcbdrive%
  16.       cd %pcbdir%
  17.       board
  18. rem
  19. rem These four statements first check to see if we shelled out to the door.
  20. rem If so, we exit back to PCBoard.  Otherwise, we change to the drive
  21. rem and subdirectory where PCBoard executed from and rerun BOARD.BAT.
  22.